From 07becbc15ebb9506419ff79155cc20aff7feb739 Mon Sep 17 00:00:00 2001 From: OGINO Masanori Date: Tue, 29 Jul 2014 23:24:35 +0900 Subject: [PATCH] Remove duplicated ${DESTDIR}. Both Makefile.in and install.sh prepended ${DESTDIR} to ${PREFIX} so the installation prefix became ${DESTDIR}/${DESTDIR}/${PREFIX}. Signed-off-by: OGINO Masanori --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index dfb599da5..bb3d5084a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -118,8 +118,8 @@ $$(PKGDIR_$(1))/lib/cargo/manifest.in: all install-$(1): $$(PKGDIR_$(1))/lib/cargo/manifest.in $$(PKGDIR_$(1))/install.sh \ - --prefix="$$(DESTDIR)$$(CFG_PREFIX)" \ - --destdir="$$(DESTDIR)" $$(MAYBE_DISABLE_VERIFY) + --prefix="$$(CFG_PREFIX)" \ + --destdir="$$(DESTDIR)/" $$(MAYBE_DISABLE_VERIFY) endef $(foreach target,$(CFG_TARGET),$(eval $(call DO_DIST_TARGET,$(target)))) -- 2.30.2